From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mout-p-103.mailbox.org (mout-p-103.mailbox.org [80.241.56.161]) by sourceware.org (Postfix) with ESMTPS id 1982838582B3 for ; Thu, 4 Jan 2024 18:53:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 1982838582B3 Authentication-Results: sourceware.org; dmarc=pass (p=reject dis=none) header.from=aarsen.me Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=aarsen.me ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 1982838582B3 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=80.241.56.161 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704394411; cv=none; b=GZbqwAhL+hshvdLPFfBiFC5zUxUUs35qkqvRrt+XTr/eGRIxpa57VwyKrCarwc7X13ULcmbxo8vspM23QMhILGYi5Xeg4IHHvylWyU/e2y6bK/7a9mqyAq4cIq76A4Sn6PxQHLTKy5mCZeIAh0pHZOfpjayMz5IiFwIt63xH4VA= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704394411; c=relaxed/simple; bh=sWTgEUodqqnf4hvByplUx9MA6V/hZUzK2PytCBHHk4w=; h=DKIM-Signature:From:To:Subject:Date:Message-ID:MIME-Version; b=IPCs5ocC0V16+WoiZ7AYhLq2JTMn7B2b3P115aZxYaHArahC+UzptpYbD8ukE2wo31sRcRjeOfquBcewLmsEJTm+RIzZPZSRbgTJZc81k+JhF1+eq98Rhr8C4FMC4WjBBnnoG+WNX7ModnK8WmePzKbguyovqw21ECi5gTHX/zo= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from smtp102.mailbox.org (smtp102.mailbox.org [10.196.197.102]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-103.mailbox.org (Postfix) with ESMTPS id 4T5bMW1XhJz9sqF; Thu, 4 Jan 2024 19:53:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=aarsen.me; s=MBO0001; t=1704394407; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=QTMcXRALEC8BuZsqgIwppUwCnm9jpR9QwTGVZCJYLlI=; b=iMjw58aaHqgUYkt4yHlgBqbIO+Fxn3TCx6026sk6B8bthEuLMC1ll83nqubYknEWIGOH0i 3rVDRvKJmIYhQZcbyew1KerpATs7pyBdbvXY1rEDBocPyyFYGcJ1cfr9TfA9QbyuCSLoWg frPqyzbeMG4NtSqIlGzV9m7M3H3DSaCS1Fxu552ge4bi/SPhp2JBEXOwGMm6nnKMTaCMUb BCWyvVx2N9w/idF0kofhb783i6VGlmHKUJ1NFwjGKE687kYIoDjjmSKca5Yu6Lac/CrI5d CDsR7ec8JGEodAWGl92bjXduqW99qIz18dmRqDsvQIRGKCUPZrr7HmK+i62T7Q== From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= To: gcc-patches@gcc.gnu.org Cc: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= Subject: [pushed 2/2] libstdc++: fix typo in Date: Thu, 4 Jan 2024 19:52:59 +0100 Message-ID: <20240104185321.3276425-2-arsen@aarsen.me> In-Reply-To: <20240104185321.3276425-1-arsen@aarsen.me> References: <20240104185321.3276425-1-arsen@aarsen.me> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-10.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_INFOUSMEBIZ,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: libstdc++-v3/ChangeLog: * include/std/generator (_Subyield_state::_M_jump_in): Fix typo reported by Will Hawkins . --- libstdc++-v3/include/std/generator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/std/generator b/libstdc++-v3/include/std/generator index a8ad9c443531..e7ef5ddfdd34 100644 --- a/libstdc++-v3/include/std/generator +++ b/libstdc++-v3/include/std/generator @@ -269,7 +269,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { __glibcxx_assert(&__new.promise()._M_nest == this); __glibcxx_assert(this->_M_is_bottom()); - // We're bottom. We're also top of top is unset (note that this is + // We're bottom. We're also top if top is unset (note that this is // not true if something was added to the coro stack and then popped, // but in that case we can't possibly be yielded from, as it would // require rerunning begin()). -- 2.43.0