From ce8d01a8f428d6be477035c8ff21bc1b247643c6 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 17 Jul 2022 10:17:48 +1000 Subject: [PATCH] docs: Fix a few typos (#4054) There are small typos in: - cluster/readme.md - ext_libs/string-view-lite/nonstd/string_view.h Fixes: - Should read `retrieved` rather than `retreived`. - Should read `availability` rather than `availablity`. Signed-off-by: Tim Gates --- cluster/readme.md | 2 +- ext_libs/string-view-lite/nonstd/string_view.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/readme.md b/cluster/readme.md index d303e650dfc..866405c5cf1 100644 --- a/cluster/readme.md +++ b/cluster/readme.md @@ -67,7 +67,7 @@ hadoop jar $HADOOP_HOME/hadoop-streaming.jar \ where `` is the directory on HDFS where you want the trained model to be saved. The trained model is saved to the file -`/model` on HDFS and can be retreived by `hadoop -get`. +`/model` on HDFS and can be retrieved by `hadoop -get`. To modify the arguments to VW, edit the script `runvw.sh`. Arguments to hadoop can be directly added in the hadoop streaming command. diff --git a/ext_libs/string-view-lite/nonstd/string_view.h b/ext_libs/string-view-lite/nonstd/string_view.h index d9040665d8f..7e3d6a166cd 100644 --- a/ext_libs/string-view-lite/nonstd/string_view.h +++ b/ext_libs/string-view-lite/nonstd/string_view.h @@ -318,7 +318,7 @@ using std::operator<<; // Providing char-type specializations for compare() and length() that // use compiler intrinsics can improve compile- and run-time performance. // -// The challenge is in using the right combinations of builtin availablity +// The challenge is in using the right combinations of builtin availability // and its constexpr-ness. // // | compiler | __builtin_memcmp (constexpr) | memcmp (constexpr) |