docs: fix documentation typo (#143) #476
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| licenses: | |
| name: file licenses | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: install ripgrep | |
| run: | | |
| wget https://github.com/BurntSushi/ripgrep/releases/download/13.0.0/ripgrep_13.0.0_amd64.deb | |
| sudo dpkg -i ripgrep_13.0.0_amd64.deb | |
| rg --version || exit 1 | |
| - name: run the license check | |
| run: ./scripts/file_license_check.sh |