Skip to content

Commit

Permalink
chore(README): treat imported semver as class
Browse files Browse the repository at this point in the history
  • Loading branch information
CompeyDev committed Nov 22, 2024
1 parent 30c104d commit 8a89d50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ Invalid versions should return a [`Result`] with the respective error. If not, t
filing an issue [here](https://github.com/0x5eal/semver-luau/issues).

```luau
local semver = require("semver")
local Semver = require("semver")
-- Parse version strings
local v1 = semver.parse("1.2.3"):unwrap() --[[
local v1 = Semver.parse("1.2.3"):unwrap() --[[
major = 1,
minor = 2,
patch = 3,
buildMetadata = Option::None,
prerelease = Option::None
]]
local v2 = semver.parse("5.12.0+build.1731248766"):unwrap() --[[
local v2 = Semver.parse("5.12.0+build.1731248766"):unwrap() --[[
major = 5,
minor = 12,
patch = 0,
Expand Down

0 comments on commit 8a89d50

Please sign in to comment.