Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note that capital A-F digits are used #13

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Data::UUID.

AS OF YET UNRELEASED
- documentation improvements

1.220 2014-12-15
- improve chances it'll work on Android (thanks, Brian Fraser)

Expand Down
2 changes: 2 additions & 0 deletions UUID.pm
Expand Up @@ -81,11 +81,13 @@ This modules provides several methods to create a UUID. In all methods, C<<

# creates UUID string, using conventional UUID string format,
# such as: 4162F712-1DD2-11B2-B17E-C09EFE1DC403
# Note that digits A-F are capitalized, which is contrary to rfc4122
$ug->create_str();
$ug->create_from_name_str(<namespace>, <name>);

# creates UUID string as a hex string,
# such as: 0x4162F7121DD211B2B17EC09EFE1DC403
# Note that digits A-F are capitalized, which is contrary to rfc4122
$ug->create_hex();
$ug->create_from_name_hex(<namespace>, <name>);

Expand Down