Browse Source

doc: minor changes

Michele Caini 5 years ago
parent
commit
d1901a97d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/md/resource.md

+ 1 - 1
docs/md/resource.md

@@ -126,7 +126,7 @@ identifier and the parameters used to construct the resource as arguments:
 // uses the identifier declared above
 // uses the identifier declared above
 cache.load<my_loader>(identifier, 0);
 cache.load<my_loader>(identifier, 0);
 
 
-// uses a const char * directly as an identifier
+// uses a hashed string directly
 cache.load<my_loader>("another/identifier"_hs, 42);
 cache.load<my_loader>("another/identifier"_hs, 42);
 ```
 ```