Skip to content

Commit

Permalink
Merge pull request #11324 from qmonmert/typo081124
Browse files Browse the repository at this point in the history
Clean code
  • Loading branch information
murdos authored Nov 8, 2024
2 parents bde2b3b + 2314f67 commit 29b2092
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public interface NpmVersions {
* source folder for this version
* @return The version
* @throws UnknownNpmPackageException
* is the package can't be found in source
* if the package can't be found in source
*/
default NpmPackageVersion get(NpmPackageName packageName, NpmVersionSource source) {
return get().get(packageName, source);
Expand All @@ -35,7 +35,7 @@ default NpmPackageVersion get(NpmPackageName packageName, NpmVersionSource sourc
* source folder for this version
* @return The version
* @throws UnknownNpmPackageException
* is the package can't be found in source
* if the package can't be found in source
*/
default NpmPackageVersion get(String packageName, NpmVersionSource source) {
return get(new NpmPackageName(packageName), source);
Expand All @@ -50,7 +50,7 @@ default NpmPackageVersion get(String packageName, NpmVersionSource source) {
* source folder for this version
* @return The version
* @throws UnknownNpmPackageException
* is the package can't be found in source
* if the package can't be found in source
*/
default NpmPackageVersion get(String packageName, NpmVersionSourceFactory source) {
return get(packageName, source.build());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const homeRoutes = (): RouteRecordRaw[] => [

(example for vue.js, need some adaptation for other frontends frameworks)

You can then append this routes to the main routes in `router.ts`:
You can then append these routes to the main routes in `router.ts`:

```typescript
import { createRouter, createWebHistory } from 'vue-router';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class MsSQLTestContainerExtension implements BeforeAllCallback {
private static AtomicBoolean started = new AtomicBoolean(false);
private static MSSQLServerContainer<?> container = new MSSQLServerContainer<>("{{mssqlDockerImageWithVersion}}")
private static MSSQLServerContainer<?> container = new MSSQLServerContainer<>("{{mssqlDockerImageWithVersion}}")
.withUrlParam("trustServerCertificate","true")
.acceptLicense();
Expand Down

0 comments on commit 29b2092

Please sign in to comment.