Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some comments #46834

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/files/src/views/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default defineComponent({
if (this.currentViewId !== this.currentView?.id) {
// This is guaranteed to be a view because `currentViewId` falls back to the default 'files' view
const view = this.views.find(({ id }) => id === this.currentViewId)!
// The the new view as active
// The new view as active
this.showView(view)
logger.debug(`Navigation changed from ${oldView} to ${newView}`, { to: view })
}
Expand Down
4 changes: 2 additions & 2 deletions build/stubs/intl.php
Original file line number Diff line number Diff line change
Expand Up @@ -2751,7 +2751,7 @@ public function getType() { }
* <b>IntlCalendar::DOW_SATURDAY</b>.
* </p>
* @return int
* The number of milliseconds into the day at which the the weekend begins or
* The number of milliseconds into the day at which the weekend begins or
* ends or <b>FALSE</b> on failure.
*/
public function getWeekendTransition($dayOfWeek) { }
Expand Down Expand Up @@ -5229,7 +5229,7 @@ function intlcal_get_type($calendar) { }
* <b>IntlCalendar::DOW_SATURDAY</b>.
* </p>
* @return int
* The number of milliseconds into the day at which the the weekend begins or
* The number of milliseconds into the day at which the weekend begins or
* ends or <b>FALSE</b> on failure.
* @since 5.5
*/
Expand Down
4 changes: 2 additions & 2 deletions cypress.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ declare global {
/**
* Unmock all initial states or one defined by app and key
*
* @param app app name of the inital state
* @param key the key of the the initial state
* @param app app name of the initial state
* @param key the key of the initial state
*/
unmockInitialState: (app?: string, key?: string) => void
}
Expand Down
2 changes: 1 addition & 1 deletion lib/private/Files/Storage/Wrapper/Encryption.php
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ public function fopen($path, $mode) {


/**
* perform some plausibility checks if the the unencrypted size is correct.
* perform some plausibility checks if the unencrypted size is correct.
* If not, we calculate the correct unencrypted size and return it
*
* @param string $path internal path relative to the storage root
Expand Down
2 changes: 1 addition & 1 deletion lib/private/Remote/Instance.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function getUrl() {
}

/**
* @return string The of of the remote server with protocol
* @return string The of the remote server with protocol
*/
public function getFullUrl() {
return $this->getProtocol() . '://' . $this->getUrl();
Expand Down
2 changes: 1 addition & 1 deletion lib/public/Remote/IInstance.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface IInstance {
public function getUrl();

/**
* @return string The of of the remote server with protocol
* @return string The of the remote server with protocol
*
* @since 13.0.0
* @deprecated 23.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/public/Share_Backend_Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace OCP;

/**
* Interface for collections of of items implemented by another share backend.
* Interface for collections of items implemented by another share backend.
* Extends the Share_Backend interface.
* @since 5.0.0
*/
Expand Down
Loading