Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoSanchez committed Sep 14, 2023
1 parent 7828904 commit a85623b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
-Dsonar.pullrequest.base=${{ github.event.pull_request.base.ref }}
- name: Store assets
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/hooks_export')
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/development')
uses: actions/upload-artifact@v3
with:
name: assets
Expand All @@ -88,7 +88,7 @@ jobs:
name: Upload assets
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/hooks_export'
if: github.event_name == 'push' && github.ref == 'refs/heads/development'
strategy:
matrix:
environment:
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export interface ISplitFactoryChildProps extends ISplitContextValues { }

/**
* SplitFactory Props interface. These are the props accepted by SplitFactory component,
* used to instantiate a factory and client instances, update the Split context, and listen for SDK events.
* used to instantiate a factory and client instance, update the Split context, and listen for SDK events.
*/
export interface ISplitFactoryProps extends IUpdateProps {

Expand Down Expand Up @@ -136,7 +136,7 @@ export interface ISplitClientChildProps extends ISplitContextValues { }

/**
* SplitClient Props interface. These are the props accepted by SplitClient component,
* used to instantiate a new client instances, update the Split context, and listen for SDK events.
* used to instantiate a new client instance, update the Split context, and listen for SDK events.
*/
export interface ISplitClientProps extends IUpdateProps {

Expand Down
4 changes: 2 additions & 2 deletions types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export interface ISplitFactoryChildProps extends ISplitContextValues {
}
/**
* SplitFactory Props interface. These are the props accepted by SplitFactory component,
* used to instantiate a factory and client instances, update the Split context, and listen for SDK events.
* used to instantiate a factory and client instance, update the Split context, and listen for SDK events.
*/
export interface ISplitFactoryProps extends IUpdateProps {
/**
Expand Down Expand Up @@ -112,7 +112,7 @@ export interface ISplitClientChildProps extends ISplitContextValues {
}
/**
* SplitClient Props interface. These are the props accepted by SplitClient component,
* used to instantiate a new client instances, update the Split context, and listen for SDK events.
* used to instantiate a new client instance, update the Split context, and listen for SDK events.
*/
export interface ISplitClientProps extends IUpdateProps {
/**
Expand Down

0 comments on commit a85623b

Please sign in to comment.