Skip to content

Commit 9584d63

Browse files
committed
chore: fix typos and incorrect output reference
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: passed - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 231bb8c commit 9584d63

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/git_note_filter_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ name: git_note_filter_packages
2323
on:
2424
# Allow the workflow to be manually run:
2525
workflow_dispatch:
26-
# Define the input parameters for the workflow:a
26+
# Define the input parameters for the workflow:
2727
inputs:
2828
commit_hash:
2929
description: 'Commit hash to create note for'

.github/workflows/lint_changed_files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
- name: 'Lint shell script files'
149149
if: success() || failure()
150150
run: |
151-
files=$(echo "${{ steps.random-files.outputs.files }}" | tr ' ' '\n' | grep -vE '\.(js|md|json|ts|c|h)$' | while read -r file; do head -n1 "$file" | grep -q '^\#\!/usr/bin/env bash' && echo "$file"; done | tr '\n' ' ' | sed 's/ $//')
151+
files=$(echo "${{ steps.changed-files.outputs.files }}" | tr ' ' '\n' | grep -vE '\.(js|md|json|ts|c|h)$' | while read -r file; do head -n1 "$file" | grep -q '^\#\!/usr/bin/env bash' && echo "$file"; done | tr '\n' ' ' | sed 's/ $//')
152152
if [[ -n "${files}" ]]; then
153153
# Install shellcheck:
154154
make install-deps-shellcheck

.github/workflows/scripts/first_time_greeting

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ We appreciate your contribution!
167167
## Documentation Links
168168
169169
- [Contributing Guidelines][stdlib-contributing]
170-
- [Developtment Guide][stdlib-development]
170+
- [Development Guide][stdlib-development]
171171
- [Gitter channel][stdlib-gitter]
172172
- [make rules for running examples][make-docs-examples]
173173
- [make rules for running unit tests][make-docs-test]

.github/workflows/scripts/test_install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ install_test() {
177177
echo '' >> "${log_file}" 2>&1
178178
echo 'Successfully ran test script.' >> "${log_file}" 2>&1
179179

180-
# FIMXE: uncomment once we've figured out our package.json `exports` strategy...
180+
# FIXME: uncomment once we've figured out our package.json `exports` strategy...
181181
# echo 'Creating test script (import individual package)...' >> "${log_file}" 2>&1
182182
# echo 'import sin from "@stdlib/math/base/special/sin"; console.log( sin( 3.14 ) );' > "${install_dir}/script.mjs"
183183
# echo 'script:' >> "${log_file}" 2>&1

0 commit comments

Comments
 (0)