Skip to content

Commit 1093818

Browse files
Merge pull request #679 from Oplkill/fix-double-colon-url
Fix double colon in url generator
2 parents 1539375 + 25bc6a3 commit 1093818

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/jsoncons_ext/jsonschema/common/compilation_context.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ namespace jsonschema {
113113
std::mt19937 gen{ dev() };
114114
std::uniform_int_distribution<std::mt19937::result_type> dist(1, 10000);
115115

116-
std::string str = "https:://jsoncons.com/" + std::to_string(dist(gen));
116+
std::string str = "https://jsoncons.com/" + std::to_string(dist(gen));
117117
jsoncons::uri uri{str};
118118
return uri;
119119
}

0 commit comments

Comments
 (0)