summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2017-05-19 20:01:04 +0200
committerEugen Wissner <belka@caraus.de>2017-05-19 20:01:04 +0200
commita648e2120a5f672fece538b516b8ce3644aebe3d (patch)
treec9d7cdf464b9cacdf87808a67f0ac424ee89e7c8
parentbc618090502e9c6a632cdeea4491ef33812f6214 (diff)
downloadtanya-0.5.0.tar.gz
Fix parameter count for docs in container.stringv0.5.0
-rw-r--r--README.md7
-rw-r--r--source/tanya/container/string.d1
2 files changed, 3 insertions, 5 deletions
diff --git a/README.md b/README.md
index 551e84e..7268c42 100644
--- a/README.md
+++ b/README.md
@@ -41,10 +41,7 @@ helper functions).
### Current status
-The library is currently under development, but the API is becoming gradually
-stable.
-
-Following modules are coming soon:
+Following modules are under development:
| Feature | Branch | Build status |
|--------------|:------------:|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -72,4 +69,4 @@ Since I'm mostly busy writing new code and implementing new features I would
appreciate, if anyone uses the library. It would help me to improve the
codebase and fix issues.
-Feel free to contact me if you have any questions.
+Feel free to contact me if you have any questions: info@caraus.de.
diff --git a/source/tanya/container/string.d b/source/tanya/container/string.d
index 3c89f0f..564a84c 100644
--- a/source/tanya/container/string.d
+++ b/source/tanya/container/string.d
@@ -456,6 +456,7 @@ struct String
* C = Type of the character to fill the string with.
* n = Number of characters to copy.
* chr = Character to fill the string with.
+ * allocator = Allocator.
*/
this(C)(const size_t n,
const C chr,