diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index 5c205b7..0000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: publish - -on: - workflow_dispatch: - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v3 - - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - run: cargo publish --token ${{ secrets.TOKEN }} \ No newline at end of file diff --git a/src/pkce/mod.rs b/src/pkce/mod.rs index b147b20..49ce309 100644 --- a/src/pkce/mod.rs +++ b/src/pkce/mod.rs @@ -11,7 +11,7 @@ pub struct PKCE { } impl PKCE { - /// Generates a new [PKCE](https://tools.ietf.org/html/rfc7636) instance with a randomly generated code verifier, + /// Creates a new [PKCE](https://tools.ietf.org/html/rfc7636) instance with a randomly generated code verifier, /// a derived code challenge, and the specified method (default is "S256"). pub fn new() -> Self { let code_verifier = urlsafe_token(CV_DEFAULT_SIZE);