Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
tidy spelling
Dave Cottlehuber committed 10 months ago
commit 1c5f88ead8e4239aed25ebf383117342c5c72850
parent 1808779
7 files changed +8 -8
modified docs/pkg-lua-script.5
@@ -112,11 +112,11 @@ if the files are identical,
.Va 1
if the files are different and
.Va >1
-
if an error occured
+
if an error occurred
.It Fn pkg.copy "source" "destination"
Copy a file preserving its attributes. return
.Va -1
-
if an error occured
+
if an error occurred
.It Ft st Fn pkg.stat "file"
return an object table
.Ft st
modified external/libecc/src/arithmetic_tests/arithmetic_tests.c
@@ -1222,7 +1222,7 @@ int main(int argc, char *argv[])

	return 0;
err:
-
	printf("Error: critical error occured! Leaving ...\n");
+
	printf("Error: critical error occurred! Leaving ...\n");
	if(fd != 0){
		close(fd);
	}
modified external/libecc/src/sig/sig_algs.c
@@ -1030,7 +1030,7 @@ ATTRIBUTE_WARN_UNUSED_RET static int _bubble_sort(verify_batch_scratch_pad *elem
				swapped = 1;
                        }
                }
-
		/* If no swap occured in the inner loop, get out */
+
		/* If no swap occurred in the inner loop, get out */
		if(!swapped){
			break;
		}
modified external/libucl/include/ucl.h
@@ -860,7 +860,7 @@ UCL_EXTERN ucl_object_iter_t ucl_object_iterate_new (const ucl_object_t *obj)
 * (such as ucl_object_iterate_safe()) to see if operation has encountered
 * fatal exception while performing that operation (e.g. ENOMEM).
 * @param iter opaque iterator
-
 * @return true if exception has occured, false otherwise
+
 * @return true if exception has occurred, false otherwise
 */
UCL_EXTERN bool ucl_object_iter_chk_excpn(ucl_object_iter_t *it);

modified external/sqlite/shell.c
@@ -15035,7 +15035,7 @@ void sqlite3_expert_destroy(sqlite3expert *p){
**   }
**   rc = sqlite3_intck_error(p, &zErr);
**   if( rc!=SQLITE_OK ){
-
**     printf("error occured (rc=%d), (errmsg=%s)\n", rc, zErr);
+
**     printf("error occurred (rc=%d), (errmsg=%s)\n", rc, zErr);
**   }
**   sqlite3_intck_close(p);
**
modified external/sqlite/sqlite3.c
@@ -232751,7 +232751,7 @@ static int sessionBindRow(
** iterator pIter points to to the SELECT and attempts to seek to the table
** entry. If a row is found, the SELECT statement left pointing at the row
** and SQLITE_ROW is returned. Otherwise, if no row is found and no error
-
** has occured, the statement is reset and SQLITE_OK is returned. If an
+
** has occurred, the statement is reset and SQLITE_OK is returned. If an
** error occurs, the statement is reset and an SQLite error code is returned.
**
** If this function returns SQLITE_ROW, the caller must eventually reset()
modified libpkg/fetch_libcurl.c
@@ -508,7 +508,7 @@ do_retry:
			if (rc == 404) {
				retcode = EPKG_ENOENT;
			} else {
-
				pkg_emit_error("An error occured while fetching package: %s", curl_easy_strerror(rc));
+
				pkg_emit_error("An error occurred while fetching package: %s", curl_easy_strerror(rc));
				retcode = EPKG_FATAL;
			}
		} else